home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 04 / 4 / DISK0440.ZIP / FILEFIX.DOC < prev    next >
Text File  |  1985-05-27  |  2KB  |  28 lines

  1. This program takes an ASCII text file with CR/LF delimiters and
  2. prepares it for use with WordPlus PC or PCjr.  WordPlus expects its
  3. .TXT files padded with nulls.  It will not successfully allow 
  4. modification of files obtained from downloads or files generated
  5. by EDLIN.  Three versions of these programs are on the disc.  Two
  6. versions of the BASIC version are on the disk with the extension 
  7. .BAS and .ASC.  These are commented internally to allow the user to
  8. modify the program.  As written, the program replaces the '@' symbol
  9. with the WordPlus open format marker.  This is consistent with the
  10. files the program was originally designed to work with.  The other two 
  11. versions, (.PAS and .COM), are the TurboPascal and Pascal object 
  12. versions respectively.  The .COM version may be run directly from the
  13. DOS prompt by typing FILEFIX.  There are three possible ways to run it
  14. from DOS.  The first is to type FILEFIX at the prompt.  The program
  15. will request a filename and extension for input.  The rootname and
  16. drive will be extracted, then the extension '.FIX' will be appended.
  17. The second method is to call the program with the input filename 
  18. separated from the program call by a space.  As above, the rootname
  19. and drive will be extracted and the extension '.FIX' will be appended.
  20. The third method is to specify both the input and output filename from
  21. the DOS prompt.  In any case, the two names are checked to be sure they
  22. are different, then both files are opened and the files processed.
  23. The '.COM' version displays each line of the file as it is processed,
  24. but the BASIC version does not.  When the process is complete, the
  25. console bell is sounded and the process terminates.  The Pascal source
  26. is commented for the benefit of those who have a Pascal compiler and
  27. wish to modify it.
  28.